diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(sales)/tech-project-avl/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/(sales)/tech-project-avl/page.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/[lng]/evcp/(evcp)/(sales)/tech-project-avl/page.tsx b/app/[lng]/evcp/(evcp)/(sales)/tech-project-avl/page.tsx index 4ce018cd..c9ec6075 100644 --- a/app/[lng]/evcp/(evcp)/(sales)/tech-project-avl/page.tsx +++ b/app/[lng]/evcp/(evcp)/(sales)/tech-project-avl/page.tsx @@ -12,6 +12,7 @@ import { getValidFilters } from "@/lib/data-table" import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
import { Ellipsis } from "lucide-react"
import { InformationButton } from "@/components/information/information-button"
+import { useTranslation } from "@/i18n"
export interface PageProps {
params: Promise<{ lng: string }>
searchParams: Promise<SearchParams>
@@ -22,6 +23,7 @@ export default async function AcceptedQuotationsPage({ searchParams,
}: PageProps) {
const { lng } = await params
+ const {t} = await useTranslation(lng, 'menu')
const session = await getServerSession(authOptions)
if (!session) {
@@ -47,7 +49,7 @@ export default async function AcceptedQuotationsPage({ <div>
<div className="flex items-center gap-2">
<h2 className="text-2xl font-bold tracking-tight">
- 견적 Result 전송
+ {t('menu.tech_sales.result_transmission')}
</h2>
<InformationButton pagePath="evcp/tech-project-avl" />
</div>
|
